:root{
  --bg: #0b0f14;
  --surface: #0f1418;
  --card: rgba(255,255,255,0.02);
  --muted: #9aa4ad;
  --primary: #1f8ef1;
  --primary-2: #1977d9;
  --accent-cyan: #6be0ff;
  --accent-magenta: #9a6bff;
  --glass: rgba(255,255,255,0.03);
  --radius: 14px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html,body{
  height:100%;
  background: radial-gradient(ellipse at top center, rgba(20,30,40,0.35) 0%, transparent 30%), var(--bg);
  color: #e6eef6;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  scroll-behavior: smooth;

  background-image: url('../images/bg1.png');
  background-position:center center;
  background-origin: border-box;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;

}

/* ---------- NAVBAR ---------- */
.site-navbar{
  position: sticky;
  top: 0;
  z-index: 1100;
  /*background: transparent;
  transition: background-color .35s ease, box-shadow .35s ease, padding .25s ease;*/
  padding: 18px 0;
}
.site-navbar.scrolled{
  /*background: linear-gradient(180deg, rgba(5,8,12,0.7), rgba(5,8,12,0.45));
  box-shadow: 0 6px 20px rgba(2,6,10,0.45);
   backdrop-filter: blur(6px);
  */
  padding: 10px 0;
 
}
.nav-brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#dfe7ef;
 
  letter-spacing:0.4px;
  font-family: "Poppins", sans-serif;
  text-decoration:none;
}
.logo-mark{
  width:42px;
  height:42px;
  border-radius:10px;
  background: linear-gradient(135deg,var(--accent-cyan),var(--accent-magenta));
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 8px 28px rgba(30,140,230,0.12);

  color: #021019;
  font-size:18px;
}
.navbar-nav .nav-link{
  color: #dfe7ef;
  margin-left:0.5rem;
  margin-right:0.5rem;

}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus{
  color: var(--primary);

  text-decoration:none;
}
.cta-contact{
  background: linear-gradient(180deg,var(--primary),var(--primary-2));
  border-radius:28px;
  padding:14px 28px;
  color:#fff;
  
  border: none;
  box-shadow: 0 8px 28px rgba(31,142,241,0.16);
 
}
.feature2{
  margin-top:200px;
}
.contact-btn{
  border-radius: 14px;
}
.cta-contact:hover{  box-shadow: 0 16px 40px rgba(31,142,241,0.22); }

/* ---------- HERO ---------- */
.hero{
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  position:relative;
  padding-top:0px;

  overflow:hidden;

}

.hero-inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:980px;
  margin:0 auto;
  padding:0px 18px;
}
.hero h1{
  font-family:"Poppins",sans-serif;
  font-weight:700;
  font-size: 48px;
  line-height:1.1;
  margin-bottom:12px;
  color:#ffffff;
  text-shadow: 0 6px 28px rgba(27,40,60,0.3);
}
.hero p.lead{
  color: var(--muted);
  font-size: 24px;
  line-height: 1.4;
  margin-bottom:28px;
}
  /* Footer */
  .footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: #94a3b8;
}


/* ---------- SECTIONS ---------- */
section{ padding: 64px 0; background: var(--bg); opacity: 0; 
   }
section.animate{ opacity: 1;  }
.container-narrow{ max-width:1100px; margin:0 auto; padding: 0 15px; }
.nav-container{ max-width:900px; margin:0 auto; padding: 0 15px; }

.section-small-title{ display:inline-block; padding:6px 22px; border-radius:999px; color:var(--muted); border:1px solid rgba(20, 177, 255, 0.4); background: rgba(255,255,255,0.01); margin-bottom:6px; }

.section-title{
  font-family:"Poppins",sans-serif;
  font-weight:600;
  font-size: 36px;
  margin-bottom:18px;
}

/* ---------- FEATURES / CARDS ---------- */
.feature-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 12px;
  padding: 26px;
  padding-top:0px;
  min-height: 170px;
  box-shadow: 0 6px 24px rgba(4,8,12,0.45);
  border: 1px solid rgba(255,255,255,0.03);
 /* transition: transform .18s ease, box-shadow .2s ease;*/
  width: 100%;
  margin-bottom: 20px;
}
.feature-card:hover{  box-shadow: 0 20px 40px rgba(6,14,30,0.5); }
.feature-icon{
  width:56px; height:56px; border-radius:10px; display:inline-flex; align-items:center; justify-content:center; margin-bottom:12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border:1px solid rgba(255,255,255,0.03);
}
.feature-card h5{ margin-top:6px; margin-bottom:10px; font-weight:700; color:#fff; font-size: clamp(1.1rem, 3vw, 1.25rem); }
.feature-card p{ color:var(--muted); font-size: clamp(0.9rem, 2.5vw, 0.95rem); margin-bottom:0; }

/* ---------- PRODUCTS ---------- */
.product-tile{
  display:flex;
  gap:18px;
  align-items:center;
  padding:22px;
  font-size:26px;
  border-radius:14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  /*transition: transform .18s ease, box-shadow .18s ease;*/
  text-align:left;
  width: 100%;
  margin-bottom: 20px;
}
.product-tile:hover{ box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.product-icon{  border-radius:16px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.product-icon img{ width:50%; max-width: 100%; height: auto; }

.product-title{ font-weight:600; margin-bottom:6px; color:#fff; font-size: 26px); }
.product-desc{ color:var(--muted); font-size: clamp(0.9rem, 2.5vw, 0.95rem); }

/* ---------- PROCESS ---------- */
.process-step{
  min-height: 100px;
  display:flex;
  gap:18px;
  align-items:flex-start;
  width: 100%;
  margin-bottom: 20px;
}
.badge-ico{
  width:60px; height:60px; border-radius:12px; background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:20px; color:var(--primary); border:1px solid rgba(255,255,255,0.03); flex-shrink: 0;
}
.process-step h6{ margin:0 0 6px 0; font-weight:700; color:#fff; font-size: clamp(1rem, 2.5vw, 1.1rem); }
.process-step p{ margin:0; color:var(--muted); font-size: clamp(0.9rem, 2vw, 0.95rem); }

/* ---------- CONTACT ---------- */
.contact-card{

  border-radius: 14px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.03);
  width: 100%;
}
.contact-img{

  border-radius:25px;
  min-height:260px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,0.03);
}
.contact-img .placeholder{
  width:88%;
  height:76%;
  border-radius:12px;
}
.cta-contact{
  text-decoration: none!important;
}
.form-control{ background: rgba(255,255,255,0.015); color:#e6eef6; border:1px solid rgba(255,255,255,0.4); border-radius: 8px; padding: 12px; font-size: clamp(0.9rem, 2vw, 1rem); margin-top:12px; }
.form-control:focus{ box-shadow:none; border-color: rgba(31,142,241,0.9); }

/* ---------- FOOTER ---------- */
footer.site-footer{ padding:10px 30px; border-top:1px solid rgba(255,255,255,0.02); color: var(--muted); background: transparent; }

/* small utilities */
.muted{ color: var(--muted); }
.subtle-pill{ display:inline-block; padding:6px 12px; border-radius:999px; font-size:0.8rem; color:var(--muted); border:1px solid rgba(255,255,255,0.02); background: rgba(255,255,255,0.01); }

/* responsive tweaks */
@media (max-width:1024px){
  .container-narrow{ max-width:100%; padding: 0 20px; }
  .nav-container{ max-width:100%; padding: 0 20px; }
  .hero-inner{ max-width:100%; padding:60px 20px; }
  .section-title{ font-size: 30px; }
  .feature-card{ padding: 20px; min-height: 150px; }
  .product-tile{ padding:18px; gap:14px; }
  .process-step{ gap:14px; min-height: 80px; width:90%;margin:0px auto;}
  .badge-ico{ width:50px; height:50px; font-size:18px; }
  .contact-card{ padding: 20px; }
}

@media (max-width:767.98px){
  .site-navbar{ padding:10px 0; }
  .hero{ min-height: 80vh; padding-top:76px; padding-bottom:46px; }
  .hero-inner{ padding:40px 12px; }
  .hero h1{ font-size: 36px; margin-bottom:10px; }
  .hero p.lead{ font-size: 18px; margin-bottom:20px; }

  .product-tile{ flex-direction: column; text-align: center; padding:16px; }
  .process-step{ flex-direction: row; text-align: left; gap:12px;padding:10px 0px;}
  .badge-ico{ width:60px; height:60px; font-size:20px; margin: 0 auto; }
  .contact-card{ padding: 20px; }
  .contact-img{ min-height:200px; }
  .footer{ padding: 40px 20px; }
  .footer-title{ font-size: 1.1rem; }
  .feature-card h5{
    font-size:26px;
  }
  .product-icon img{
    width:75%;
  }
  .feature2{
    margin-top:10px;
  }
}

@media (max-width:480px){
  section{ padding: 40px 0; }
  .hero-inner{ padding:30px 10px; }
  .hero h1{ font-size: clamp(20px, 12vw, 32px); }
  .hero p.lead{ font-size: clamp(0.85rem, 6vw, 0.95rem); }
  .feature-card{ padding: 16px; min-height: 140px; }
 
  .product-tile{ padding:14px; }
  .process-step{ gap:10px; }
  .badge-ico{ width:50px; height:50px; font-size:18px; }
  .contact-card{ padding: 16px; }
  .form-control{ padding: 10px; font-size: 0.9rem; }
}

/* focus outlines */
a:focus, button:focus, input:focus, textarea:focus { outline: 3px solid rgba(31,142,241,0.12); outline-offset: 3px; }
.form-control{

  color:#FFF;
}
input::placeholder {
  color: #ffffff; /* Change to your preferred color */
  opacity: 1;  /* Ensures full opacity */
}
iframe{
  border-radius: 25px;
}